home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tcclib.exe
/
WEEKDAY.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-01-31
|
190 b
|
12 lines
#include <time.h>
int WeekDay()
{
struct tm *timeptr;
time_t secsnow;
time( &secsnow );
timeptr = localtime( &secsnow );
return( timeptr->tm_wday );
}